bitkeeper revision 1.1159.170.7 (41923908rDeIw_dn4LNMwv4Ji60AVg)
authormafetter@fleming.research <mafetter@fleming.research>
Wed, 10 Nov 2004 15:51:36 +0000 (15:51 +0000)
committermafetter@fleming.research <mafetter@fleming.research>
Wed, 10 Nov 2004 15:51:36 +0000 (15:51 +0000)
"make install" was still using the old $TOP/install area for some
of its work, rather than the new $TOP/dist/install area.  Fixed.

Makefile

index 6ce225a449f7ed6c61bfc7bcbe8bfa0fa88cfd26..b5cb717dad2411f757b83ab87b24973567d9369e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -35,8 +35,8 @@ dist: xen tools kernels docs
 install: 
        $(MAKE) -C xen install
        $(MAKE) -C tools install
-       $(shell cp -a install/boot/* /boot/)
-       $(shell cp -a install/lib/modules/* /lib/modules/)
+       $(shell cp -a $(INSTALL_DIR)/boot/* /boot/)
+       $(shell cp -a $(INSTALL_DIR)/lib/modules/* /lib/modules/)
        sh ./docs/check_pkgs && $(MAKE) -C docs install || true
        $(shell cp -dR $(INSTALL_DIR)/boot/*$(LINUX_VER)* $(prefix)/boot/)
        $(shell cp -dR $(INSTALL_DIR)/lib/modules/* $(prefix)/lib/modules/)